home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / menu.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  1KB  |  39 lines

  1. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  2.  *
  3.  * This file is part of slrn.
  4.  *
  5.  * Slrn is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2, or (at your option) any
  8.  * later version.
  9.  * 
  10.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  11.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13.  * for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with Slrn; see the file COPYING.  If not, write to the Free
  17.  * Software Foundation, 59 Temple Place - Suite 330, 
  18.  * Boston, MA  02111-1307, USA.
  19.  */
  20.  
  21. extern void slrn_update_article_menu (void);
  22. extern void slrn_update_group_menu (void);
  23. extern int slrn_execute_menu (int);
  24. extern int slrn_sbox_sorting_method (void);
  25.  
  26.  
  27. typedef struct
  28. {
  29.    char *title;
  30.    char **lines;
  31. }
  32. Slrn_Select_Box_Type;
  33.  
  34. extern int slrn_select_box (Slrn_Select_Box_Type *);
  35.  
  36.  
  37. extern int slrn_select_list_mode (char *, unsigned int, char **, unsigned int, int *);
  38. extern char *slrn_browse_dir (char *);
  39.